home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48hor1 / key.doc < prev    next >
Text File  |  1995-03-31  |  843b  |  34 lines

  1. Author: ? 
  2. Purpose: ? 
  3.  
  4. Here is the ->KEY routine made as short, and fast, as possible.  C->KEY is  
  5. needed to create an on stack copy of ->KEY.  It utilizes a SYSEVAL which 
  6. works by appending the binary integers.  This version of ->KEY is written 
  7. similarly to the RPL routines found in the 48's ROM.  An RPL dissassembly 
  8. follows of ->KEY. 
  9.  
  10.  
  11. C->KEY 
  12. (BYTES: #BFA5h 115) 
  13.  
  14. %%HP: T(3)A(D)F(.); 
  15. \<< 
  16.  # A06E9718AB212D9Dh 
  17.  # D1A3BE06E9720B9h 
  18.  # 312B05445040h 1 2 
  19.  START # 5193h SYSEVAL 
  20.  NEXT # 4003h SYSEVAL 
  21.  # 62B9Ch SYSEVAL  
  22. \>> 
  23.  
  24.  
  25. 02D9D    begin RPL 
  26. 18AB2    need one argument from stack 
  27. 06E97    place next address on stack, do not call 
  28. 20B9A    rcl list 
  29. 06E97    place next address on stack, do not call 
  30. 1A3BE    EVAL 
  31. 0400D    short integer <3h> 
  32. 05445    ->program 
  33. 0312B    end RPL 
  34.